Nevron .NET Vision
Nevron.GraphicsCore Namespace / NGeometry2D Class / Rotate Method / Rotate(NPointD[],Int32,Int32,Double,NPointD) Method
An array of points.
The index of the first point to rotate.
The number of points to rotate.
Rotation angle (in Radians).
Rotation pin point.


In This Topic
    Rotate(NPointD[],Int32,Int32,Double,NPointD) Method
    In This Topic
    Rotates a range of points from the specified array around the specified pin point.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Sub Rotate( _
       ByVal points() As NPointD, _
       ByVal start As System.Integer, _
       ByVal count As System.Integer, _
       ByVal angle As System.Double, _
       ByVal pin As NPointD _
    ) 
    'Usage
     
    
    Dim points() As NPointD
    Dim start As System.Integer
    Dim count As System.Integer
    Dim angle As System.Double
    Dim pin As NPointD
     
    NGeometry2D.Rotate(points, start, count, angle, pin)
    public static void Rotate( 
       NPointD[] points,
       System.int start,
       System.int count,
       System.double angle,
       NPointD pin
    )

    Parameters

    points
    An array of points.
    start
    The index of the first point to rotate.
    count
    The number of points to rotate.
    angle
    Rotation angle (in Radians).
    pin
    Rotation pin point.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also